HTMLify
Log in
Register
Dashboard
Temp Share
Shortlinks
Frames
API
Log in
Register
Dashboard
Temp Share
Shortlinks
Frames
API
cody - HTMLify profile
cody
4270 Files
634202 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/174 - Sticky Notes/js
script.js
cody/swapnilsparsh/30DaysOfJavaScript/174 - Sticky Notes/js/script.js
156 Views
0 Comments
$(document).ready(function() {
all_notes = $("li a");
all_notes.on("keyup", function() {
note_title = $(this).find("h2").text();
note_content = $(this).find("p").text();
item_key = "list_" + $(this).parent().index();